home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / sas_unix_lib.lha / unix / include / sys / param.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-01  |  186 b   |  13 lines

  1. #ifndef _PARAM_H
  2. #define _PARAM_H
  3.  
  4. #define MAXPATHLEN 1024
  5. #define FILENAME_MAX MAXPATHLEN /* Should be in stdio.h */
  6. #define DEV_BSIZE 512
  7.  
  8. #ifndef NULL
  9. #define NULL (0)
  10. #endif
  11.  
  12. #endif
  13.